home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 25
/
AACD 25.iso
/
AACD
/
Magazine
/
Online
/
QMail
/
source
/
stralloc_arts.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-04-15
|
196 b
|
13 lines
#include "byte.h"
#include "str.h"
#include "stralloc.h"
int stralloc_starts(sa,s)
stralloc *sa;
char *s;
{
int len;
len = str_len(s);
return (sa->len >= len) && byte_equal(s,len,sa->s);
}